home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP09 / POEPOEM.MAK < prev    next >
Encoding:
Text File  |  1996-01-01  |  362 b   |  13 lines

  1. #-----------------------
  2. # POEPOEM.MAK make file
  3. #-----------------------
  4.  
  5. poepoem.exe : poepoem.obj poepoem.res
  6.      $(LINKER) $(GUIFLAGS) -OUT:poepoem.exe poepoem.obj poepoem.res $(GUILIBS)
  7.  
  8. poepoem.obj : poepoem.c poepoem.h
  9.      $(CC) $(CFLAGS) poepoem.c
  10.  
  11. poepoem.res : poepoem.rc poepoem.ico poepoem.asc poepoem.h
  12.      $(RC) $(RCVARS) poepoem.rc
  13.